
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#f4f2ee;
}

/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 60px;
}

.logo{
  background:#1f8f6a;
  color:#fff;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
}

.menu{
  display:flex;
  list-style:none;
  gap:30px;
}

.menu a{
  text-decoration:none;
  color:#555;
}

.menu a:hover{
  color:#000;
}

.nav-btns a{
  padding:10px 16px;
  border-radius:25px;
  text-decoration:none;
  margin-left:10px;
}

.ghost{
  background:#eae7e2;
  color:#000;
}

.primary{
  background:#1f8f6a;
  color:#fff;
}

/* HERO */
.hero{
  display:flex;
  gap:40px;
  padding:40px 60px;
}

.hero-left{
  flex:1;
  background:#f7f5f1;
  padding:40px;
  border-radius:25px;
}

.hero-left h1{
  font-size:48px;
  margin:20px 0;
}

.sub{
  color:#666;
}

.btns a{
  display:inline-block;
  margin-top:15px;
  margin-right:10px;
  padding:12px 20px;
  border-radius:25px;
  text-decoration:none;
}

.outline{
  border:1px solid #ccc;
  color:#000;
}

.stats{
  display:flex;
  gap:15px;
  margin-top:30px;
}

.stat{
  background:#fff;
  padding:20px;
  border-radius:15px;
}

/* RIGHT */
.hero-right{
  flex:1;
  background:#0f3c33;
  color:#fff;
  padding:40px;
  border-radius:25px;
}

.mini-card{
  background:#fff;
  color:#000;
  padding:15px;
  border-radius:12px;
  margin-top:10px;
}

/* SECTIONS */
section{
  padding:60px;
}

.cards{
  display:flex;
  gap:20px;
}

.card{
  background:#fff;
  padding:20px;
  border-radius:15px;
  flex:1;
}

.card a{
  display:inline-block;
  margin-top:10px;
  padding:8px 15px;
  background:#eee;
  border-radius:10px;
  text-decoration:none;
  color:#000;
}

/* HOVER */
a:hover{
  opacity:0.8;
}
